path/filepath.lazybuf.buf (field)

11 uses

	path/filepath (current package)
		path.go#L28: 	buf        []byte
		path.go#L35: 	if b.buf != nil {
		path.go#L36: 		return b.buf[i]
		path.go#L42: 	if b.buf == nil {
		path.go#L47: 		b.buf = make([]byte, len(b.path))
		path.go#L48: 		copy(b.buf, b.path[:b.w])
		path.go#L50: 	b.buf[b.w] = c
		path.go#L55: 	b.buf = append(prefix, b.buf...)
		path.go#L60: 	if b.buf == nil {
		path.go#L63: 	return b.volAndPath[:b.volLen] + string(b.buf[:b.w])